All Questions
3 questions
2votes
1answer
1kviews
Mount sshfs and elevate priviliges (sudo)
I mount a remote directory using sshfs: sshfs myuser@myserver:/ /path/to/mountpoint This works just fine. But I need to acces directories on myserver that are only accessible by root. root login is ...
1vote
2answers
3kviews
How do I use my own local text editor to modify system (requires root to save) files on a remote system?
I've recently fallen in love with github's Atom text editor, and I enjoy using it for all my local coding and configuration. I started to maintain a Nagios installation for several dozen servers and ...
80votes
3answers
105kviews
sshfs mount, sudo gets permission denied
I am using sshfs to mount a folder with some python projects over ssh to my ~/ directory. $ mkdir -p ~/mount/my-projects $ sshfs [email protected]:/home/user/my-projects ~/mount/my-projects I can ...